home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Internet / WWW / apache_1.0.5 / src / CHANGES < prev    next >
Encoding:
Text File  |  1996-04-19  |  32.3 KB  |  821 lines

  1. Changes with Apache 1.0.5
  2.  
  3.   *) util.c in src fixed to escape newlines on shell commands
  4.      [Ben Laurie]
  5.  
  6. Changes with Apache 1.0.4
  7.  
  8.   *) util.c in cgi-src fixed to escape newlines on shell commands
  9.      [Ben Laurie]
  10.  
  11. Changes with Apache 1.0.3
  12.  
  13.   *) Internal redirects which occur in mod_dir.c now preserve the
  14.      query portion of a request (the bit after the question mark).
  15.      [Adam Sussman]
  16.  
  17.   *) Escape active characters '<', '>' and '&' in html output in
  18.      directory listings, error messages and redirection links.
  19.      [David Robinson]
  20.  
  21.   *) Apache will now work with LynxOS 2.3 and later [Steven Watt]
  22.  
  23.   *) Fix for POSIX compliance in waiting for processes in alloc.c
  24.      [Nick Williams]
  25.  
  26.   *) setsockopt no longer takes a const declared argument [Martijn Koster]
  27.  
  28.   *) Reset timeout timer after each successful fwrite() to the network.
  29.      This patch adds a reset_timeout() procedure that is called by
  30.      send_fd() to reset the timeout ever time data is written to the net.
  31.      [Nathan Schrenk]
  32.  
  33.   *) timeout() signal handler now checks for SIGPIPE and reports
  34.      lost connections in a more user friendly way. [Rob Hartill]
  35.  
  36.   *) Location of the file ( default logs/apache_runtime_status ) can be
  37.      altered by httpd.conf ScoreBoardFile setting - works similar
  38.      to PidFile (lots of PidFile stuff copied)
  39.  
  40.   *) Include sys/resource.h in the correct place for SunOS4 [Samerr Parekh]
  41.  
  42.   *) the pstrcat call in mod_cookies.c didn't have an ending NULL,
  43.      which caused a SEGV with cookies enabled
  44.  
  45.   *) Output warning when MinSpareServers is set to <= 0 and change it to 1
  46.      [Rob Hartill]
  47.  
  48.   *) Log the UNIX textual error returned by some system calls, in
  49.      particular errors from accept() [David Robinson]
  50.  
  51.   *) Add strerror function to util.c for SunOS4 [Randy Terbush]
  52.  
  53. Changes with Apache 1.0.2
  54.  
  55.   *) patch to get Apache compiled on UnixWare 2.x, recommended as 
  56.      a temporary measure, pending rewrite of rfc931.c. [Chuck Murcko]
  57.  
  58.   *) Fix get_basic_auth_pw() to set the auth_type of the request.
  59.      [David Robinson]
  60.  
  61.   *) past changes to http_config.c to only use the 
  62.      setrlimit function on systems defining RLIMIT_NOFILE
  63.      broke the feature on SUNOS4. Now defines HAVE_RESOURCE
  64.      for SUNOS and prototypes the needed functions.
  65.  
  66.   *) Remove uses of MAX_STRING_LEN/HUGE_STRING_LEN from several routines.
  67.      [David Robinson]
  68.  
  69.   *) Fix use of pointer to scratch memory. [Cliff Skolnick]
  70.  
  71.   *) Merge multiple headers from CGI scripts instead of taking last
  72.      one. [David Robinson]
  73.  
  74.   *) Add support for SCO 5. [Ben Laurie]
  75.  
  76. Changes with Apache 1.0.1
  77.  
  78.   *) Silence mod_log_referer and mod_log_agent if not configured
  79.      [Randy Terbush]
  80.  
  81.   *) Recursive includes can occur if the client supplies PATH_INFO data
  82.      and the server provider uses relative links; as file.html
  83.      relative to /doc.shtml/pathinfo is /doc.shtml/file.html. [David Robinson]
  84.  
  85.   *) The replacement for initgroups() did not call {set,end}grent(). This
  86.      had two implications: if anything else used getgrent(), then
  87.      initgroups() would fail, and it was consuming a file descriptor.
  88.      [Ben Laurie]
  89.  
  90.   *) On heavily loaded servers it was possible for the scoreboard to get 
  91.      out of sync with reality, as a result of a race condition.
  92.      The observed symptoms are far more Apaches running than should
  93.      be, and heavy system loads, generally followed by catastrophic
  94.      system failure. [Ben Laurie]
  95.  
  96.   *) Fix typo in licence. [David Robinson]
  97.  
  98. Changes with Apache 1.0.0
  99.  
  100.   *) 'dbmmanage' script now takes fourth command-line argument, which is
  101.      group(s) of the user, if given.  [Rob Hartill]
  102.  
  103.   *) httpd_monitor Perl utility script added to "support" directory;
  104.      lets you know what your active server processes are up to.  [Known
  105.      to work on SunOS and HP-UX at least].  [Rob Hartill]
  106.  
  107.   *) Passes TZ environment variable to child processes if set on startup
  108.      [ David Robinson ]
  109.  
  110.   *) Attempting to retrieve the URI /foo/bar/zot.map (an imagemap request
  111.      with *no* QUERY_STRING) returns the default URL, rather than a core
  112.      dump.  [Mark Cox]
  113.  
  114.   *) Attempting to configure auth without any "requires" lines should now
  115.      be equivalent to "require valid-user", rather than a core dump.
  116.      [Patch supplied by J. Katzman]
  117.  
  118.   *) Getparents() routine fixed to handle some awkward corner cases better;
  119.      in particular, '/./' is eliminated from incoming URIs.  Also fixed the
  120.      no2slash() utility routine to reduce any number of consecutive slashes
  121.      to one.  These changes keep "trick" URIs from avoiding <Directory>
  122.      checks.  [David Robinson]
  123.  
  124.   *) Allowed any number of '/' characters to match a single '/' when
  125.      checking for Aliases; this keeps certain ScriptAlias directives
  126.      from getting bypassed.  [Robert Thau]
  127.  
  128.   *) DBM group code now checks all groups, not just the first [Rob Hartill]
  129.  
  130.   *) "allow from good.com" no longer allows clients from nogood.com to
  131.      connect; formerly this was allowed because the terminal substrings
  132.      do match.  [Robert Thau]
  133.  
  134.   *) Transactions interrupted in the middle of processing some include
  135.      directive are now logged correctly [Robert Thau]
  136.  
  137.   *) Cleaned up Configure script so it doesn't abuse EXTRA_LIBS to specify
  138.      host-specific default libraries.  [Ben Laurie]
  139.  
  140.   *) Cleaned up http_main code a bit; IdentityCheck may now work better on 
  141.      systems with virtual hosts.  [David Robinson]
  142.  
  143.   *) Improved installation instructions in top-level README [Brian Behlendorf]
  144.  
  145. Changes with Apache 0.8.16
  146.  
  147.   *) New man page for 'httpd' added to support directory [David Robinson]
  148.  
  149.   *) .htgroup files can have more than one line giving members for a
  150.      given group (each must have the group name in front), for NCSA
  151.      back-compatibility [Robert Thau]
  152.  
  153.   *) Mutual exclusion around accept() is on by default for SVR4 systems
  154.      generally, since they generally can't handle multiple processes in
  155.      accept() on the same socket.  This should cure flaky behavior on
  156.      a lot of those systems.  [David Robinson]
  157.  
  158.   *) AddType, AddEncoding, and AddLanguage directives take multiple
  159.      extensions on a single command line [David Robinson]
  160.  
  161.   *) UserDir can be disabled for a given virtual host by saying
  162.      "UserDir disabled" in the <VirtualHost> section --- it was a bug
  163.      that this didn't work.  [David Robinson]
  164.  
  165.   *) Compiles on QNX [Ben Laurie]
  166.  
  167.   *) Corrected parsing of ctime time format [David Robinson]
  168.  
  169.   *) httpd does a perror() before exiting if it can't log its pid
  170.      to the PidFile, to make diagnosing the error a bit easier.
  171.      [David Robinson]
  172.  
  173.   *) <!--#include file="..."--> can no longer include files in the
  174.      parent directory, for NCSA back-compatibility.  [David Robinson]
  175.  
  176.   *) '~' is *not* escaped in URIs generated for directory listings
  177.      [Roy Fielding]
  178.  
  179.   *) Eliminated compiler warning in the imagemap module [Randy Terbush]
  180.  
  181.   *) Fixed bug involving handling URIs with escaped %-characters
  182.      in redirects [David Robinson]
  183.  
  184. Changes with Apache 0.8.15
  185.  
  186.   *) Switched to new, simpler license
  187.  
  188.   *) Eliminated core dumps with improperly formatted DBM group files [Mark Cox]
  189.  
  190.   *) Don't allow requests for ordinary files to have PATH_INFO [Ben Laurie]
  191.  
  192.   *) Reject paths containing %-escaped '%' or null characters [David Robinson]
  193.  
  194.   *) Correctly handles internal redirects to files with names containing '%'
  195.      [David Robinson]
  196.  
  197.   *) Repunctuated some error messages [Aram Mirzadeh, Andrew Wilson]
  198.  
  199.   *) Use geteuid() rather than getuid() to see if we have root privilege,
  200.      so that server correctly resets privilege if run setuid root.  [Andrew
  201.      Wilson]
  202.  
  203.   *) Handle ftp: and telnet: URLs correctly in imagemaps (built-in module)
  204.      [Randy Terbush]
  205.  
  206.   *) Fix relative URLs in imagemap files [Randy Terbush]
  207.  
  208.   *) Somewhat better fix for the old "Alias /foo/ /bar/" business
  209.      [David Robinson]
  210.  
  211.   *) Don't repeatedly open the ErrorLog if a bunch of <VirtualHost>
  212.      entries all name the same one. [David Robinson]
  213.  
  214.   *) Fix directory listings with filenames containing unusual characters
  215.      [David Robinson]
  216.  
  217.   *) Better URI-escaping for generated URIs in directories with filenames
  218.      containing unusual characters [Ben Laurie]
  219.  
  220.   *) Fixed potential FILE* leak in http_main.c [Ben Laurie]
  221.  
  222.   *) Unblock alarms on error return from spawn_child() [David Robinson]  
  223.  
  224.   *) Sample Config files have extra note for SCO users [Ben Laurie]
  225.  
  226.   *) Configuration has note for HP-UX users [Rob Hartill]
  227.  
  228.   *) Eliminated some bogus Linux-only #defines in conf.h [Aram Mirzadeh]
  229.  
  230.   *) Nuked bogus #define in httpd.h [David Robinson]
  231.  
  232.   *) Better test for whether a system has setrlimit() [David Robinson]
  233.  
  234.   *) Calls update_child_status() after reopen_scoreboard() [David Robinson]
  235.  
  236.   *) Doesn't send itself SIGHUP on startup when run in the -X debug-only mode
  237.      [Ben Laurie]
  238.  
  239. Changes with Apache 0.8.14
  240.  
  241.   *) Compiles on SCO ODT 3.0 [Ben Laurie]
  242.  
  243.   *) AddDescription works (better) [Ben Laurie]
  244.  
  245.   *) Leaves an intelligible error diagnostic when it can't set group
  246.      privileges on standalone startup [Andrew Wilson]
  247.  
  248.   *) Compiles on NeXT again --- the 0.8.13 RLIMIT patch was failing on
  249.      that machine, which claims to be BSD but does not support RLIMIT.
  250.      [Randy Terbush]
  251.  
  252.   *) gcc -Wall no longer complains about an unused variable when util.c
  253.      is compiled with -DMINIMAL_DNS [Andrew Wilson]
  254.  
  255.   *) Nuked another compiler warning for -Wall on Linux [Aram Mirzadeh]
  256.  
  257. Changes with Apache 0.8.13
  258.  
  259.   *) Make IndexIgnore *work* (ooops) [Jarkko Torppa]
  260.  
  261.   *) Have built-in imagemap code recognize & honor Point directive [James
  262.      Cloos]
  263.  
  264.   *) Generate cleaner directory listings in directories with a mix of
  265.      long and short filenames [Rob Hartill]
  266.  
  267.   *) Properly initialize dynamically loaded modules [Royston Shufflebotham]
  268.  
  269.   *) Properly default ServerName for virtual servers [Robert Thau]
  270.  
  271.   *) Rationalize handling of BSD in conf.h and elsewhere [Randy Terbush,
  272.      Paul Richards and a cast of thousands...]
  273.  
  274.   *) On self-identified BSD systems (we don't try to guess any more),
  275.      allocate a few extra file descriptors per virtual host with setrlimit,
  276.      if we can, to avoid running out. [Randy Terbush]
  277.  
  278.   *) Write 22-character lock file name into buffer with enough space
  279.      on startup [Konstantin Olchanski]
  280.  
  281.   *) Use archaic setpgrp() interface on NeXT, which requires it [Brian
  282.      Pinkerton]
  283.  
  284.   *) Suppress -Wall warning by casting const away in util.c [Aram Mirzadeh]
  285.  
  286.   *) Suppress -Wall warning by initializing variable in negotation code
  287.      [Tobias Weingartner]
  288.  
  289. Changes with Apache 0.8.12
  290.  
  291.   *) Doesn't pause three seconds after including a CGI script which is
  292.      too slow to die off (this is done by not even trying to kill off
  293.      subprocesses, including the SIGTERM/pause/SIGKILL routine, until
  294.      after the entire document has been processed).  [Robert Thau]
  295.  
  296.   *) Doesn't do SSI if Options Includes is off.  (Ooops).  [David Robinson]
  297.  
  298.   *) Options IncludesNoExec allows inclusion of at least text/* [Roy Fielding]
  299.  
  300.   *) Allows .htaccess files to override <Directory> sections naming the
  301.      same directory [David Robinson]
  302.  
  303.   *) Removed an efficiency hack in sub_req_lookup_uri which was
  304.      causing certain extremely marginal cases (e.g., ScriptAlias of a
  305.      *particular* index.html file) to fail.  [David Robinson]
  306.  
  307.   *) Doesn't log an error when the requested URI requires
  308.      authentication, but no auth header line was supplied by the
  309.      client; this is a normal condition (the client doesn't no auth is
  310.      needed here yet).  [Robert Thau]
  311.  
  312.   *) Behaves more sanely when the name server loses its mind [Sean Welch]
  313.  
  314.   *) RFC931 code compiles cleanly on old BSDI releases [Randy Terbush]
  315.  
  316.   *) RFC931 code no longer passes out name of prior clients on current
  317.      requests if the current request came from a server that doesn't
  318.      do RFC931.  [David Robinson]
  319.  
  320.   *) Configuration script accepts "Module" lines with trailing whitespace.
  321.      [Robert Thau]
  322.  
  323.   *) Cleaned up compiler warning from mod_access.c [Robert Thau]
  324.  
  325.   *) Cleaned up comments in mod_cgi.c [Robert Thau]
  326.  
  327. Changes with Apache 0.8.11
  328.  
  329.   *) Wildcard <Directory> specifications work.  [Robert Thau]
  330.  
  331.   *) Doesn't loop for buggy CGI on Solaris [Cliff Skolnick]
  332.   
  333.   *) Symlink checks (FollowSymLinks off, or SymLinkIfOwnerMatch) always check
  334.      the file being requested itself, in addition to the directories leading
  335.      up to it. [Robert Thau]
  336.   
  337.   *) Logs access failures due to symlink checks or invalid client address
  338.      in the error log [Roy Fielding, Robert Thau]
  339.   
  340.   *) Symlink checks deal correctly with systems where lstat of
  341.      "/path/to/some/link/" follows the link.  [Thau, Fielding]
  342.  
  343.   *) Doesn't reset DirectoryIndex to 'index.html' when
  344.      other directory options are set in a .htaccess file.  [Robert Thau]
  345.   
  346.   *) Clarifed init code and nuked bogus warning in mod_access.c
  347.      [Florent Guillaume]
  348.   
  349.   *) Corrected several directives in sample srm.conf
  350.      --- includes corrections to directory indexing icon-related directives
  351.      (using unknown.gif rather than unknown.xbm as the DefaultIcon, doing
  352.      icons for encodings right, and turning on AddEncoding by default).
  353.      [Roy Fielding]
  354.   
  355.   *) Corrected descriptions of args to AddIcon and AddAlt in command table
  356.      [James Cloos]
  357.   
  358.   *) INSTALL & README mention "contributed modules" directory [Brian
  359.      Behlendorf]
  360.   
  361.   *) Fixed English in the license language...  "for for" --> "for".
  362.      [Roy Fielding]
  363.   
  364.   *) Fixed ScriptAlias/Alias interaction by moving ScriptAlias handling to
  365.      mod_alias.c, merging it almost completely with handling of Alias, and
  366.      adding a 'notes' field to the request_rec which allows the CGI module
  367.      to discover whether the Alias module has put this request through
  368.      ScriptAlias (which it needs to know for back-combatibility, as the old
  369.      NCSA code did not check Options ExecCGI in ScriptAliased directories).
  370.      [Robert Thau]
  371.   
  372.  
  373. Changes with Apache 0.8.10
  374.  
  375.   *) AllowOverride applies to the named directory, and not just
  376.      subdirectories.  [David Robinson]
  377.  
  378.   *) Do locking for accept() exclusion (on systems that need it)
  379.      using a special file created for the purpose in /usr/tmp, and
  380.      not the error log; using the error log causes real problems
  381.      if it's NFS-mounted; this is known to be the cause of a whole
  382.      lot of "server hang" problems with Solaris.  [David Robinson;
  383.      thanks to Merten Schumann for help diagnosing the problem].
  384.  
  385. Changes with Apache 0.8.9
  386.  
  387.   *) Compiles with -DMAXIMUM_DNS ---- ooops! [Henrik Mortensen]
  388.  
  389.   *) Nested includes see environment variables of the including document,
  390.      for NCSA bug-compatibility (some sites have standard footer includes
  391.      which try to print out the last-modified date).  [Eric Hagberg/Robert
  392.      Thau]
  393.  
  394.   *) <!--exec cgi="/some/uri/here"--> always treats the item named by the
  395.      URI as a CGI script, even if it would have been treated as something
  396.      else if requested directly, for NCSA back-combatibility.  (Note that
  397.      this means that people who know the name of the script can see the
  398.      code just by asking for it).  [Robert Thau]
  399.  
  400.   *) New version of dbmmanage script included in support directory as
  401.      dbmmanage.new.
  402.  
  403.   *) Check if scoreboard file couldn't be opened, and say so, rather
  404.      then going insane [David Robinson]
  405.  
  406.   *) POST to CGI works on A/UX [Jim Jaglieski]
  407.  
  408.   *) AddIcon and AddAlt commands work properly [Rob Hartill]
  409.  
  410.   *) NCSA server push works properly --- the Arena bug compatibility
  411.      workaround, which broke it, is gone (use -DARENA_BUG_WORKAROUND
  412.      if you still want the workaround).  [Rob Hartill]
  413.  
  414.   *) If client didn't submit any Accept-encodings, ignore encodings in
  415.      content negotiation.  (NB this will all have to be reworked anyway
  416.      for the new HTTP draft).  [Florent Guillaume]
  417.      
  418.   *) Don't dump core when trying to log timed-out requests [Jim Jaglieski]
  419.  
  420.   *) Really honor CacheNegotiatedDocs [Florent Guillaume]
  421.  
  422.   *) Give Redirect priority over Alias, for NCSA bug compatibility
  423.      [David Robinson]
  424.  
  425.   *) Correctly set PATH_TRANSLATED in all cases from <!--#exec cmd=""-->,
  426.      paralleling earlier bug fix for CGI [David Robinson]
  427.  
  428.   *) If DBM auth is improperly configured, report a server error and don't
  429.      dump core.
  430.  
  431.   *) Deleted FCNTL_SERIALIZED_ACCEPTS from conf.h entry for A/UX;
  432.      it seems to work well enough without it (even in a 10 hits/sec
  433.      workout), and the overhead for the locking under A/UX is
  434.      alarmingly high (though it is very low on other systems).
  435.      [Eric Hagberg]
  436.  
  437.   *) Fixed portability problems with mod_cookies.c [Cliff Skolnick]
  438.  
  439.   *) Further de-Berklize mod_cookies.c; change the bogus #include.  [Brian
  440.      Behlendorf/Eric Hagberg]
  441.  
  442.   *) More improvements to default Configuration for A/UX [Jim Jaglieski]
  443.  
  444.   *) Compiles clean on NEXT [Rob Hartill]
  445.  
  446.   *) Compiles clean on SGI [Robert Thau]
  447.  
  448. Changes with Apache 0.8.8
  449.  
  450.   *) SunOS library prototypes now never included unless explicitly
  451.      requested in the configuration (via -DSUNOS_LIB_PROTOTYPES);
  452.      people using GNU libc on SunOS are screwed by prototypes for the
  453.      standard library.
  454.  
  455.      (Those who wish to compile clean with gcc -Wall on a standard
  456.      SunOS setup need the prototypes, and may obtain them using
  457.      -DSUNOS_LIB_PROTOTYPES.  Those wishing to use -Wall on a system
  458.      with nonstandard libraries are presumably competent to make their
  459.      own arrangements).
  460.  
  461.   *) Strips trailing '/' characters off both args to the Alias command,
  462.      to make 'Alias /foo/ /bar/' work.
  463.  
  464. Changes with Apache 0.8.7
  465.  
  466.   *) Don't hang when restarting with a child from 'TransferLog "|..."' running
  467.      [reported by David Robinson]
  468.  
  469.   *) Compiles clean on OSF/1 [David Robinson]
  470.  
  471.   *) Added some of the more recent significant changes (AddLanguage stuff,
  472.      experimental LogFormat support) to CHANGES file in distribution root
  473.      directory
  474.  
  475. Changes with Apache 0.8.6
  476.  
  477.   *) Deleted Netscape reload workaround --- it's in violation of HTTP specs.
  478.      (If you actually wanted a conditional GET which bypassed the cache, you
  479.      couldn't get it). [Reported by Roy Fielding]
  480.  
  481.   *) Properly terminate headers on '304 Not Modified' replies to conditional
  482.      GETs --- no browser we can find cares much, but the CERN proxy chokes.
  483.      [Reported by Cliff Skolnick; fix discovered independently by Rob Hartill]
  484.  
  485.   *) httpd -v doesn't call itself "Shambhala".  [Reported by Chuck Murcko]
  486.  
  487.   *) SunOS lib-function prototypes in conf.h conditionalized on __GNUC__,
  488.      not __SUNPRO_C (they're needed to quiet gcc -Wall, but acc chokes on 'em,
  489.      and older versions don't set the __SUNPRO_C preprocessor variable).  On
  490.      all other systems, these are never used anyway.  [Reported by Mark Cox].
  491.  
  492.   *) Scoreboard file (/tmp/htstatus.*) no longer publically writable.
  493.  
  494. Changes with Apache 0.8.5
  495.  
  496.   *) Added last-minute configurable log experiment, as optional module
  497.  
  498.   *) Correctly set r->bytes_sent for HTTP/0.9 requests, so they get logged
  499.      properly.  (One-line fix to http_protocol.c).
  500.  
  501.   *) Work around bogus behavior when reloading from Netscape.
  502.      It's Netscape's bug --- for some reason they expect a request with
  503.      If-modified-since: to not function as a conditional GET if it also
  504.      comes with Pragma: no-cache, which is way out of line with the HTTP
  505.      spec (according to Roy Fielding, the redactor).  
  506.  
  507.   *) Added parameter to set maximum number of server processes.  
  508.  
  509.   *) Added patches to make it work on A/UX.  A/UX is *weird*.  [Eric Hagberg]
  510.  
  511.   *) IdentityCheck bugfix [Chuck Murcko].
  512.  
  513.   *) Corrected cgi-src/Makefile entry for new imagemap script.  [Alexei Kosut]
  514.  
  515.   *) More sample config file corrections; add extension to AddType for
  516.      *.asis, move AddType generic description to its proper place, and
  517.      fix miscellaneous typos. [ Alexei Kosut ]
  518.  
  519.   *) Deleted the *other* reference to the regents from the Berkeley
  520.      legal disclaimer (everyplace).
  521.  
  522.   *) Nuked Shambhala name from src/README; had already cleaned it out
  523.      of everywhere else.
  524.  
  525. Changes with Apache 0.8.4
  526.  
  527.   *) Changes to server-pool management parms --- renamed current
  528.      StartServers to MinSpareServers, created separate StartServers
  529.      parameter which means what it says, and renamed MaxServers to
  530.      MaxSpareServers (though the old name still works, for NCSA 1.4
  531.      back-combatibility).  The old names were generally regarded as
  532.      too confusing.  Also altered "docs" in sample config files.
  533.  
  534.   *) More improvements to default config files ---
  535.      sample directives (commented out) for XBitHack, BindAddress,
  536.      CacheNegotiatedDocs, VirtualHost; decent set of AddLanguage
  537.      defaults, AddTypes for send-as-is and imagemap magic types, and
  538.      improvements to samples for DirectoryIndex [Alexei Kosut]
  539.  
  540.   *) Yet more improvements to default config files --- changes to
  541.      Alexei's sample AddLanguage directives, and sample LanguagePriority
  542.      [ Florent Guillaume ]
  543.  
  544.   *) Set config file locations properly if not set in httpd.conf
  545.      [ David Robinson ]
  546.  
  547.   *) Don't escape URIs in internal redirects multiple times; don't
  548.      do that when translating PATH_INFO to PATH_TRANSLATED either.
  549.      [ David Robinson ]
  550.  
  551.   *) Corrected spelling of "Required" in 401 error reports [Andrew Wilson]
  552.  
  553. Changes with Apache 0.8.3
  554.  
  555.   *) Edited distribution README to *briefly* summarize installation
  556.      procedures, and give a pointer to the INSTALL file in the src/
  557.      directory.
  558.  
  559.   *) Upgraded imagemap script in cgi-bin to 1.8 version from more
  560.      recent NCSA distributions.
  561.  
  562.   *) Bug fix to previous bug fix --- if .htaccess file and <Directory>
  563.      exist for the same directory, use both and don't segfault.  [Reported
  564.      by David Robinson]
  565.  
  566.   *) Proper makefile dependencies [David Robinson]
  567.  
  568.   *) Note (re)starts in error log --- reported by Rob Hartill.
  569.  
  570.   *) Only call no2slash() after get_path_info() has been done, to
  571.      preserve multiple slashes in the PATH_INFO [NCSA compatibility,
  572.      reported by Andrew Wilson, though this one is probably a real bug]
  573.  
  574.   *) Fixed mod_imap.c --- relative paths with base_uri referer don't
  575.      dump core when Referer is not supplied. [Randy Terbush]
  576.  
  577.   *) Lightly edited sample config files to refer people to our documentation
  578.      instead of NCSA's, and to list Rob McCool as *original* author (also
  579.      deleted his old, and no doubt non-functional email address).  Would be
  580.      nice to have examples of new features...
  581.  
  582. Changes with Apache 0.8.2
  583.  
  584.   *) Added AddLanuage code [Florent Guillaume]
  585.  
  586.   *) Don't say "access forbidden" when a CGI script is not found.  [Mark Cox] 
  587.  
  588.   *) All sorts of problems when MultiViews finds a directory.  It would
  589.      be nice if mod_dir.c was robust enough to handle that, but for now,
  590.      just punt.  [reported by Brian Behlendorf]
  591.  
  592.   *) Wait for all children on restart, to make sure that the old socket
  593.      is gone and we can reopen it.  [reported by Randy Terbush]
  594.  
  595.   *) Imagemap module is enabled in default Configuration 
  596.  
  597.   *) RefererLog and UserAgentLog modules properly default the logfile
  598.      [Randy Terbush]
  599.  
  600.   *) Mark Cox's mod_cookies added to the distribution as an optional
  601.      module (commented out in the default Configuration, and noted as
  602.      an experiment, along with mod_dld). [Mark Cox]
  603.  
  604.   *) Compiles on Ultrix (a continuing battle...). [Robert Thau]
  605.  
  606.   *) Fixed nasty bug in SIGTERM handling [reported by Randy Terbush]
  607.  
  608.   *) Changed "Shambhala" to "Apache" in API docs. [Robert Thau]
  609.  
  610.   *) Added new, toothier legal disclaimer. [Robert Thau; copied from BSD
  611.      license]
  612.  
  613. Changes with Apache 0.8.1
  614.  
  615.   *) New imagemap module [Randy Terbush]
  616.  
  617.   *) Replacement referer log module with NCSA-compatible RefererIgnore
  618.      [Matthew Gray again]
  619.  
  620.   *) Don't mung directory listings with very long filenames.
  621.      [Florent Guillaume]
  622.  
  623. Changes with Apache 0.8.0 (nee Shambhala 0.6.2):
  624.  
  625.   *) New config script.  See INSTALL for info.  [Robert Thau]
  626.  
  627.   *) Scoreboard mechanism for regulating the number of extant server
  628.      processes.  MaxServers and StartServers defaults are the same as
  629.      for NCSA, but the meanings are slightly different.  (Actually,
  630.      I should probably lower the MaxServers default to 10).
  631.  
  632.      Before asking for a new connection, each server process checks
  633.      the number of other servers which are also waiting for a
  634.      connection.  If there are more than MaxServers, it quietly dies
  635.      off.  Conversely, every second, the root, or caretaker, process
  636.      looks to see how many servers are waiting for a new connection;
  637.      if there are fewer than StartServers, it starts a new one.  This
  638.      does not depend on the number of server processes already extant.
  639.      The accounting is arranged through a "scoreboard" file, named
  640.      /tmp/htstatus.*, on which each process has an independant file
  641.      descriptor (they need to seek without interference).
  642.  
  643.      The end effect is that MaxServers is the maximum number of
  644.      servers on an *inactive* server machine, but more will be forked
  645.      off to handle unusually heavy loads (or unusually slow clients);
  646.      these will die off when they are no longer needed --- without
  647.      reverting to the overhead of full forking operation.  There is a
  648.      hard maximum of 150 server processes compiled in, largely to
  649.      avoid forking out of control and dragging the machine down.
  650.      (This is arguably too high).
  651.  
  652.      In my server endurance tests, this mechanism did not appear to
  653.      impose any significant overhead, even after I forced it to put the
  654.      scoreboard file on a normal filesystem (which might have more
  655.      overhead than tmpfs).  [Robert Thau]
  656.    
  657.   *) Set HTTP_FOO variables for SSI <!--#exec cmd-->s, not just CGI scripts.
  658.      [Cliff Skolnick]
  659.  
  660.   *) Read .htaccess files even in directory with <Directory> section.
  661.      (Former incompatibility noted on mailing list, now fixed). [Robert
  662.      Thau]
  663.  
  664.   *) "HEAD /" gives the client a "Bad Request" error message, rather
  665.      than trying to send no body *and* no headers.  [Cliff Skolnick].
  666.  
  667.   *) Don't produce double error reports for some very obscure cases
  668.      mainly involving auth configuration (the "all modules decline to
  669.      handle" case which is a sure sign of a server bug in most cases,
  670.      but also happens when authentication is badly misconfigured).
  671.      [Robert Thau]
  672.  
  673.   *) Moved FCNTL_SERIALIZED_ACCEPT defines into conf.h (that's what
  674.      it's *for*, and this sort of thing really shouldn't be cluttering
  675.      up the Makefile). [Robert Thau]
  676.  
  677.   *) Incidental code cleanups in http_main.c --- stop dragging
  678.      sa_client around; just declare it where used.  [Robert Thau]
  679.   
  680.   *) Another acc-related fix.  (It doesn't like const char
  681.      in some places...). [Mark Cox]
  682.  
  683. Changes with 0.6.1
  684.  
  685.   *) Fixed auth_name-related typos in http_core.c [Brian Behlendorf]
  686.      Also, fixed auth typo in http_protocol.c unmasked by this fix.
  687.  
  688.   *) Compiles clean with acc on SunOS [Paul Sutton]
  689.  
  690.   *) Reordered modules in modules.c so that Redirect takes priority
  691.      over ScriptAlias, for NCSA bug-compatibility [Rob Hartill] ---
  692.      believe it or not, he has an actual site with a ScriptAlias and
  693.      a Redirect declared for the *exact same directory*.  Even *my*
  694.      compatibility fetish wouldn't motivate me to fix this if the fix
  695.      required any effort, but it doesn't, so what the hey. 
  696.  
  697.   *) Fixed to properly default several server_rec fields for virtual
  698.      servers from the corresponding fields in the main server_rec.
  699.      [Cliff Skolnick --- 'port' was a particular irritant].
  700.  
  701.   *) No longer kills off nph- child processes before they are
  702.      finished sending output. [Matthew Gray]
  703.  
  704. Changes with 0.6.0
  705.  
  706.   *) Two styles of timeout --- hard and soft.  soft_timeout()s just put
  707.      the connection to the client in an "aborted" state, but otherwise
  708.      allow whatever handlers are running to clean up.  hard_timeout()s
  709.      abort the request in progress completely; anything not tied to some
  710.      resource pool cleanup will leak.  They're still around because I
  711.      haven't yet come up with a more elegant way of handling
  712.      timeouts when talking to something that isn't the client.  The
  713.      default_handler and the dir_handler now use soft timeouts, largely
  714.      so I can test the feature.  [Robert Thau]
  715.  
  716.   *) TransferLog "| my_postprocessor ..." seems to be there.  Note that
  717.      the case of log handlers dying prematurely is probably handled VERY
  718.      gracelessly at this point, and if the logger stops reading input,
  719.      the server will hang.  (It is known to correctly restart the
  720.      logging process on server restart; this is (should be!) going through
  721.      the same SIGTERM/pause/SIGKILL routine used to ding an errant CGI
  722.      script).  [Robert Thau]
  723.  
  724.   *) asis files supported (new module).  [Robert Thau]
  725.  
  726.   *) IdentityCheck code is compiled in, but has not been tested.  (I
  727.      don't know anyone who runs identd). [Robert Thau]
  728.  
  729.   *) PATH_INFO and PATH_TRANSLATED are not set unless some real PATH_INFO
  730.      came in with the request, for NCSA bug-compatibility. [Robert Thau]
  731.  
  732.   *) Don't leak the DIR * on HEAD request for a directory. [Robert Thau]
  733.  
  734.   *) Deleted the block_alarms() stuff from dbm_auth; no longer necessary,
  735.      as timeouts are not in scope. [Robert Thau]
  736.  
  737.   *) quoted-string args in config files now handled correctly (doesn't drop
  738.      the last character). [Robert Thau; reported by Randy Terbush]
  739.  
  740.   *) Fixed silly typo in http_main.c which was suddenly fatal in HP-UX.
  741.      How the hell did it ever work? [Robert Thau; reported by Rob Hartill]
  742.  
  743.   *) mod_core.c --- default_type returns DEFAULT_TYPE (the compile-time
  744.      default default type); the former default default behavior when all
  745.      type-checkers defaulted had been a core dump.  [Paul Sutton]
  746.  
  747.   *) Copy filenames out of the struct dirent when indexing
  748.      directories.  (On Linux, readdir() returns a pointer to the same
  749.      memory area every time).  Fix is in mod_dir.c.  [Paul Sutton]
  750.  
  751. Changes with 0.5.3 [not released]
  752.  
  753.   *) Default response handler notes "file not found" in the error log,
  754.      if the file was not found.  [Cliff Skolnick].
  755.  
  756.   *) Another Cliff bug --- "GET /~user" now properly redirects (the userdir
  757.      code no longer sets up bogus PATH_INFO which fakes out the directory
  758.      handler). [Cliff Skolnick]
  759.  
  760. Changes with 0.5.2
  761.  
  762.   *) Changes to http_main.c --- root server no longer plays silly
  763.      games with SIGCHLD, and so now detects and replaces dying
  764.      children.  Child processes just die on SIGTERM, without taking
  765.      the whole process group with them.  Potential problem --- if any
  766.      child process refuses to die, we hang in restart.
  767.      MaxRequestsPerChild may still not work, but it certainly works
  768.      better than it did before this!  [Robert Thau]
  769.  
  770.   *) mod_dir.c bug fixes: ReadmeName and HeaderName
  771.      work (or work better, at least); over-long description lines
  772.      properly terminated. [Mark Cox]
  773.  
  774.   *) http_request.c now calls unescape_url() more places where it
  775.      should [Paul Sutton].
  776.  
  777.   *) More directory handling bugs (reported by Cox)
  778.      Parent Directory link is now set correctly. [Robert Thau]
  779.  
  780. Changes with 0.5.1: [Hopefully complete]
  781.  
  782.   *) Generalized cleanup interface in alloc.c --- any function can be
  783.      registered with alloc.c as a cleanup for a resource pool;
  784.      tracking of files and file descriptors has been reimplemented in
  785.      terms of this interface, so I can give it some sort of a test.
  786.      [Robert Thau]
  787.  
  788.   *) More changes in alloc.c --- new cleanup_for_exec() function,
  789.      which tracks down and closes all file descriptors which have been
  790.      registered with the alloc.c machinery before the server exec()s a
  791.      child process for CGI or <!--#exec-->.  CGI children now get
  792.      started with exactly three file descriptors open.  Hopefully,
  793.      this cures the problem Rob H. was having with overly persistent
  794.      CGI connections. [Robert Thau]
  795.  
  796.   *) Mutual exclusion around the accept() in child_main() --- this is
  797.      required on at least SGI, Solaris and Linux, and is #ifdef'ed in
  798.      by default on those systems only (-DFCNTL_SERIALIZED_ACCEPT).
  799.      This uses fcntl(F_SETLK,...) on the error log descriptor because
  800.      flock() on that descriptor won't work on systems which have BSD
  801.      flock() semantics, including (I think) Linux 1.3 and Solaris.
  802.  
  803.      This does work on SunOS (when the server is idle, only one
  804.      process in the pool is waiting on accept()); it *ought* to work
  805.      on the other systems. [Robert Thau]
  806.  
  807.   *) FreeBSD and BSDI portability tweaks [Chuck Murcko]
  808.  
  809.   *) sizeof(*sa_client) bugfix from [Rob Hartill]
  810.  
  811.   *) pstrdup(..., NULL) returns NULL, [Randy Terbush]
  812.  
  813.   *) block_alarms() to avoid leaking the DBM* in dbm auth (this should
  814.      be unnecessary if I go to the revised timeout-handling scheme).
  815.      [Robert Thau]
  816.  
  817.   *) For NCSA bug-compatibility, set QUERY_STRING env var (to a null
  818.      string) even if none came in with the request.  [Robert Thau]
  819.  
  820.   *) CHANGES file added to distribution ;-).
  821.